projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b5c03b
)
x86: fix guest wrmsr warning format
author
Keir Fraser
<keir.fraser@citrix.com>
Tue, 15 Jun 2010 12:24:11 +0000
(13:24 +0100)
committer
Keir Fraser
<keir.fraser@citrix.com>
Tue, 15 Jun 2010 12:24:11 +0000
(13:24 +0100)
During the recent MSR handling cleanup, the '0' format modifier got
lost.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
xen/arch/x86/traps.c
patch
|
blob
|
history
diff --git
a/xen/arch/x86/traps.c
b/xen/arch/x86/traps.c
index 1d833beff679e48fabd7b42356ead7d1eb77fd96..5acf749b0d75abe21cb126417f6890e14b6d337e 100644
(file)
--- a/
xen/arch/x86/traps.c
+++ b/
xen/arch/x86/traps.c
@@
-2297,7
+2297,7
@@
static int emulate_privileged_op(struct cpu_user_regs *regs)
(eax != (uint32_t)val) || (edx != (uint32_t)(val >> 32)) )
invalid:
gdprintk(XENLOG_WARNING, "Domain attempted WRMSR %p from "
- "0x%
16"PRIx64" to 0x%
16"PRIx64".\n",
+ "0x%
016"PRIx64" to 0x%0
16"PRIx64".\n",
_p(regs->ecx), val, msr_content);
break;
}